home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / MiscKit1.7.1 / MiscKit / Palettes / MiscSwapKitPalette / MiscSwapKitPalette.h < prev    next >
Text File  |  1995-04-12  |  612b  |  31 lines

  1. // Copyright (C) 1995
  2. // Use is governed by the MiscKit license
  3.  
  4.  
  5. #import <appkit/appkit.h>
  6. #import <apps/InterfaceBuilder.h>
  7. #import "MiscSwapKit.subproj/MiscSwapView.h"
  8.  
  9.  
  10. @interface MiscSwapKitPalette:IBPalette
  11. {
  12.     id    realSwapObject;
  13.     id    swapImageView;
  14. }
  15.  
  16. - finishInstantiate;
  17.  
  18. @end
  19.  
  20.  
  21. // This only works because the default drawSelf in the MiscSwapView class
  22. // doesn't do much anyways. Since it doesn't draw anything, you cannot 
  23. // see the object in the palette window or anywhere in IB. This fixes that.
  24.  
  25. @interface MiscSwapView (IBDisplaying)
  26.  
  27. - drawSelf:(const NXRect *)rects :(int)rectCount;
  28.  
  29. @end
  30.  
  31.